Cortex > Metrics
Administration
Cortex > System Health
Cortex > Session Management
Cortex > Index Management
Cortex > Document Operations
Cortex > Search Operations
Cortex > A/B Testing
Cortex > Analytics
Cortex > Feedback
Nous > Health
Nous > A/B Testing
Nous > Adaptation
Nous > Learning > Models
Nous > Learning > Search Patterns
Nous > Learning > Feedback
Nous > Learning > Metrics and Events
Nous > Signals
Nous > Signals
Create Signal
POST
/
nous
/
signals
Copy
curl --request POST \
--url https://api.sophra.org/api/nous/signals \
--header 'Content-Type: application/json' \
--data '{
"type": "SEARCH",
"source": "web",
"value": {
"sessionId": "sess_123abc",
"queryId": "q_789xyz",
"resultId": "res_456def",
"position": 3,
"metadata": {
"documentType": "product",
"timeToClick": 2.5,
"deviceType": "mobile",
"viewport": {
"width": 375,
"height": 812
}
}
},
"strength": 0.8,
"priority": 1,
"metadata": {
"status": "PENDING",
"attempts": 0
}
}'
Copy
{
"success": true,
"data": {
"signalId": "<string>",
"status": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}
Body
application/json
Response
201 - application/json
Signal created successfully
The response is of type object
.
Copy
curl --request POST \
--url https://api.sophra.org/api/nous/signals \
--header 'Content-Type: application/json' \
--data '{
"type": "SEARCH",
"source": "web",
"value": {
"sessionId": "sess_123abc",
"queryId": "q_789xyz",
"resultId": "res_456def",
"position": 3,
"metadata": {
"documentType": "product",
"timeToClick": 2.5,
"deviceType": "mobile",
"viewport": {
"width": 375,
"height": 812
}
}
},
"strength": 0.8,
"priority": 1,
"metadata": {
"status": "PENDING",
"attempts": 0
}
}'
Copy
{
"success": true,
"data": {
"signalId": "<string>",
"status": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}
Assistant
Responses are generated using AI and may contain mistakes.